home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue43 / makemic / MAKEMIU.DFM / MAKEMIU.txt
Encoding:
Text File  |  1998-09-23  |  3.3 KB  |  157 lines

  1. object Form1: TForm1
  2.   Left = 261
  3.   Top = 217
  4.   Width = 283
  5.   Height = 274
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'MakeMethodInstance demo'
  8.   Font.Color = clBlack
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnCreate = FormCreate
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object GBDirectoryDets: TGroupBox
  16.     Left = 4
  17.     Top = 4
  18.     Width = 268
  19.     Height = 242
  20.     Caption = 'Directory details'
  21.     TabOrder = 0
  22.     object Label1: TLabel
  23.       Left = 7
  24.       Top = 23
  25.       Width = 45
  26.       Height = 13
  27.       Caption = 'Directory:'
  28.     end
  29.     object ListBox1: TListBox
  30.       Left = 6
  31.       Top = 48
  32.       Width = 257
  33.       Height = 120
  34.       ItemHeight = 13
  35.       TabOrder = 0
  36.     end
  37.     object BaseDirectory: TEdit
  38.       Left = 58
  39.       Top = 21
  40.       Width = 205
  41.       Height = 21
  42.       TabOrder = 1
  43.       Text = 'C:\'
  44.     end
  45.     object BtnCancel: TButton
  46.       Left = 217
  47.       Top = 215
  48.       Width = 48
  49.       Height = 21
  50.       Caption = 'Cancel'
  51.       TabOrder = 2
  52.       OnClick = BtnCancelClick
  53.     end
  54.     object BtnStart: TButton
  55.       Left = 5
  56.       Top = 215
  57.       Width = 48
  58.       Height = 21
  59.       Hint = 
  60.         'Invokes the standard MakeMethodInstance to demonstrate a method ' +
  61.         'being called with the pascal calling convention.'
  62.       Caption = 'Start'
  63.       ParentShowHint = False
  64.       ShowHint = True
  65.       TabOrder = 3
  66.       OnClick = BtnStartClick
  67.     end
  68.     object CBSysFile: TCheckBox
  69.       Left = 7
  70.       Top = 193
  71.       Width = 55
  72.       Height = 19
  73.       Caption = 'System'
  74.       State = cbChecked
  75.       TabOrder = 4
  76.     end
  77.     object CBHidden: TCheckBox
  78.       Left = 91
  79.       Top = 172
  80.       Width = 55
  81.       Height = 19
  82.       Caption = 'Hidden'
  83.       State = cbChecked
  84.       TabOrder = 5
  85.     end
  86.     object CBReadOnly: TCheckBox
  87.       Left = 7
  88.       Top = 172
  89.       Width = 68
  90.       Height = 19
  91.       Caption = 'ReadOnly'
  92.       State = cbChecked
  93.       TabOrder = 6
  94.     end
  95.     object CBArchive: TCheckBox
  96.       Left = 91
  97.       Top = 192
  98.       Width = 55
  99.       Height = 19
  100.       Caption = 'Archive'
  101.       State = cbChecked
  102.       TabOrder = 7
  103.     end
  104.     object CBDirectory: TCheckBox
  105.       Left = 167
  106.       Top = 172
  107.       Width = 68
  108.       Height = 19
  109.       Caption = 'Directory'
  110.       State = cbChecked
  111.       TabOrder = 8
  112.     end
  113.     object BtnStartR2: TButton
  114.       Left = 111
  115.       Top = 215
  116.       Width = 48
  117.       Height = 21
  118.       Hint = 
  119.         'Invokes MakeMethodInstance32Reg to demonstrate a method with two' +
  120.         ' optimised parameters'
  121.       Caption = 'Start R2'
  122.       ParentShowHint = False
  123.       ShowHint = True
  124.       TabOrder = 9
  125.       OnClick = BtnStartR2Click
  126.     end
  127.     object BtnStartR3: TButton
  128.       Left = 164
  129.       Top = 215
  130.       Width = 48
  131.       Height = 21
  132.       Hint = 
  133.         'Invokes MakeMethodInstance32Reg to demonstrate a method with thr' +
  134.         'ee optimised parameters'
  135.       Caption = 'Start R3'
  136.       ParentShowHint = False
  137.       ShowHint = True
  138.       TabOrder = 10
  139.       OnClick = BtnStartR3Click
  140.     end
  141.     object BtnStartR1: TButton
  142.       Left = 58
  143.       Top = 215
  144.       Width = 48
  145.       Height = 21
  146.       Hint = 
  147.         'Invokes MakeMethodInstance32Reg to demonstrate a method with one' +
  148.         ' optimised parameter'
  149.       Caption = 'Start R1'
  150.       ParentShowHint = False
  151.       ShowHint = True
  152.       TabOrder = 11
  153.       OnClick = BtnStartR1Click
  154.     end
  155.   end
  156. end
  157.